Skip to content

Commit a4270ca

Browse files
committed
Updated README.md and change uppsrc to 2025.1.1.
1 parent 169a98f commit a4270ca

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ build:
77

88
download:
99
mkdir -p 3p/download
10-
wget https://github.com/ultimatepp/ultimatepp/releases/download/v2025.1/uppsrc-17799.tar.gz -P 3p/download
10+
wget https://github.com/ultimatepp/ultimatepp/releases/download/v2025.1.1/uppsrc-17810.tar.gz -P 3p/download
1111
wget https://github.com/ultimatepp/ultimatepp/releases/download/v2024.1/umk-17458-linux-x86-64.tar.gz -P 3p/download
12-
tar -xf 3p/download/uppsrc-17799.tar.gz -C 3p
12+
tar -xf 3p/download/uppsrc-17810.tar.gz -C 3p
1313
tar -xf 3p/download/umk-17458-linux-x86-64.tar.gz -C 3p
1414

1515
run:
@@ -18,3 +18,4 @@ run:
1818
clean:
1919
rm -rf build
2020
rm -rf 3p
21+

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# UppTerm
22

33
## Introduction
4-
UppTerm is simple terminal application written in U++ framework. It is based on [TerminalCtrl](https://github.com/ismail-yilmaz/Terminal) written and maintained by [İsmail Yılmaz](https://github.com/ismail-yilmaz/)
4+
UppTerm is simple terminal application written in U++ framework. It is based on [TerminalCtrl](https://github.com/ismail-yilmaz/Terminal) UppHub package written and maintained by [İsmail Yılmaz](https://github.com/ismail-yilmaz/).
55

66
The main feature of this repository is that it doesn't require U++ framework installation. You can use the make command and the whole application will be built automaticaly. All dependencies, including UMK, will be downloaded from the internet. So, if you are looking for the example of using U++ framework without TheIDE it is a good repository to study the code and build architecture.
77

8+
UppTerm is a supportive component within the U++ Flatpak distribution. It launches the first time a user runs the Flatpak, downloading system-wide dependencies required for compiling framework applications. To learn more, you can visit the U++ Flatpak recipe [repository](https://github.com/flathub/org.ultimatepp.TheIDE).
9+
810
## Building
911
To build this project you do not need to install U++ framework just use following make commands
1012
```bash
@@ -24,3 +26,10 @@ You can also specify the script to execute by the terminal application
2426
```
2527
build/upp-term "/bin/bash /home/klugier/test.sh"
2628
```
29+
30+
## Cleaning
31+
To remove all downloaded dependencies and build files, run the following command:
32+
```
33+
make clean
34+
```
35+

0 commit comments

Comments
 (0)